-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (27 loc) · 796 Bytes
/
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
32
33
34
35
36
37
from setuptools import setup
setup(
# Application name:
name="swh-bibtex",
# Version number (initial):
version="0.0.1",
# Application author details:
author="Quentin Guilloteau",
author_email="Quentin.Guilloteau@univ-grenoble-alpes.fr",
# Packages
packages=["app"],
# Include additional files into the package
# include_package_data=True,
entry_points={
'console_scripts': ['swh_bibtex=app.swh_bibtex:main'],
},
# Details
url="https://github.com/GuilloteauQ/swh-bibtex",
#
# license="LICENSE.txt",
# description="List dependencies of a nix shell",
# long_description=open("README.txt").read(),
# Dependent packages (distributions)
install_requires=[
],
include_package_data=True,
)