mirror of
git://git.psyced.org/git/pypsyc
synced 2024-08-15 03:20:04 +00:00
added new pypsyc as 'mjacob2'
This commit is contained in:
parent
0abc7a0888
commit
9f7c4147c7
46 changed files with 7243 additions and 0 deletions
21
mjacob2/setup.py
Normal file
21
mjacob2/setup.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
import pypsyc
|
||||
|
||||
setup(
|
||||
name = "pypsyc",
|
||||
version = pypsyc.__version__,
|
||||
packages = find_packages(exclude='tests'),
|
||||
package_data = {
|
||||
'pypsyc.client': ['psyc.ico'],
|
||||
'pypsyc.server.webif': ['templates/*']
|
||||
},
|
||||
zip_safe = False,
|
||||
scripts = ['bin/pypsyc', 'bin/pypsycd'],
|
||||
entry_points = '''
|
||||
[pypsyc.server.packages]
|
||||
root = pypsyc.server.root:Root
|
||||
person = pypsyc.server.person:Person
|
||||
place = pypsyc.server.place:Place
|
||||
'''
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue