-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="citesphere-connector",
version="1.0.0",
description="Connect to Citesphere, an application that enables superior management of Zotero citations",
url="https://github.com/diging/citesphere-connector",
author="Digital Innovation Group",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Research Software Engineers, Researchers, Data Scientists, Developers",
"Topic :: Reserach Software Engineering :: Citation Manager",
"Programming Language :: Python",
],
keywords="cite, diging, citesphere, sphere, zotero",
package_dir={"": "src"},
packages=find_packages(where="src"),
)