-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
43 lines (41 loc) · 1.01 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
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import find_packages
from setuptools import setup
try:
with open('.version') as f:
VERSION = f.readline().strip()
except IOError:
VERSION = '2024.04.23'
setup(
name='ocflib',
version=VERSION,
author='Open Computing Facility',
author_email='[email protected]',
description='libraries for account and server management',
url='https://www.ocf.berkeley.edu',
packages=find_packages(exclude=('tests*',)),
package_data={
'ocflib.account': ['mail_templates/*'],
'ocflib.printing': ['ocfprinting.schema'],
'ocflib.vhost': ['ocfmail.schema'],
},
install_requires=(
'attrs',
'cached_property',
'cracklib',
'dnspython',
'jinja2',
'ldap3',
'pexpect',
'pycryptodome',
'pygithub',
'pymysql',
'pysnmp',
'pyyaml',
'redis',
'requests',
'sqlalchemy',
),
classifiers=[
'Programming Language :: Python :: 3',
],
)