forked from nylas/make-deb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 755 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='make-deb',
version='0.0.5',
include_package_data = True,
packages = ['make_deb'],
author = "Rob McQueen",
author_email = "[email protected]",
maintainer = "Nylas Team",
maintainer_email = "[email protected]",
description = "Generates Debian configuration based on your setup.py",
package_data = {
"make_deb": [
"resources/debian/control.j2",
"resources/debian/rules.j2",
"resources/debian/triggers.j2",
"resources/debian/changelog.j2",
"resources/debian/compat.j2"
]
},
scripts=['bin/make-deb'],
install_requires=['future', 'Jinja2'],
zip_safe=False
)