forked from glichtner/pyeditorialmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (19 loc) · 687 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (19 loc) · 687 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
# read version string from file
exec(open("src/editorialmanager/version.py").read())
setup(
name="editorialmanager",
version=version,
description="Python interface for querying the editorial manager journal submission system",
long_description=read("README.rst"),
url="https://github.com/glichtner/pyeditorialmanager",
author="Gregor Lichtner",
license="GPL v3",
packages=find_packages("src"),
package_dir={"": "src"},
zip_safe=False,
install_requires=["pandas", "beautifulsoup4", "html5lib"],
)